home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Plotting / aa_Intel_Only / Gnuplot / GnuplotSource / SubCell.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  750 b   |  31 lines

  1. /*
  2.  *  Copyright (C) 1993  Robert Davis
  3.  *
  4.  *  This program is free software; you can redistribute it and/or
  5.  *  modify it under the terms of Version 2, or any later version, of 
  6.  *  the GNU General Public License as published by the Free Software 
  7.  *  Foundation.
  8.  */
  9.  
  10. /* $Id: SubCell.h,v 1.5 1993/05/04 16:22:54 davis Exp $ */
  11.  
  12. #import <appkit/SelectionCell.h>
  13. #import "SubObjectCategory.h"        /* -setSubObject:, -subObject    */
  14.  
  15. @interface SubCell:SelectionCell
  16. {
  17.     NXCoord    ascender, descender,    /* Font attributes        */
  18.         lineHeight;
  19.     id        subObject;        /* Corresponding object        */
  20.     BOOL    showAttachment;        /* Show "attachment" symbol?    */
  21. }
  22.  
  23. + initialize;
  24.  
  25. - init;
  26.  
  27. - setFont:fontObj;
  28. - drawInside:(const NXRect *)cellFrame inView:controlView;
  29.  
  30. @end
  31.